home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / gcc-4.3-base.postinst < prev    next >
Text File  |  2008-10-25  |  332b  |  16 lines

  1. #! /bin/sh -e
  2.  
  3. case "$1" in
  4.     configure)
  5.     # see #355439, packaging error in 4.0.2-9*
  6.     docdir=/usr/share/doc/gcc-4.3-base
  7.     if [ ! -f $docdir/copyright ]; then
  8.         ln $docdir/.copyright $docdir/copyright
  9.     fi
  10.     if [ ! -f $docdir/changelog.Debian.gz ]; then
  11.         ln $docdir/.changelog.Debian.gz $docdir/changelog.Debian.gz
  12.     fi
  13. esac
  14.  
  15.  
  16.